home *** CD-ROM | disk | FTP | other *** search
/ IRIS Performer 2.2 Friends Demo / SGI IRIS Performer 2.2 Friends Demo.iso / friends / models / dxf / doc / autocad10.doc next >
Text File  |  1997-10-31  |  81KB  |  1,800 lines

  1. [ This file is an excerpt from the AutoCAD Release 10 Reference Manual.
  2.   Copyright (C) 1988 Autodesk, Inc.  All rights reserved. ]
  3.  
  4.                                Appendix C
  5.                    Drawing Interchange and File Formats
  6.  
  7.  
  8. AutoCAD can be used by itself as a complete drawing editor.  In some appli-
  9. cations, however, other programs must examine drawings created by AutoCAD
  10. or generate drawings to be viewed, modified, or plotted with AutoCAD.
  11.  
  12. For example, if you've made an architectural drawing with AutoCAD, using
  13. INSERTed parts to represent windows, doors, and so on, you can process the
  14. drawing file and produce a bill of materials of all the items used in the
  15. drawing, or even make energy use calculations based on the area and the
  16. number and type of windows used.  Another possible application is to use
  17. AutoCAD to describe structures that are then sent to a large computer for
  18. finite element structural analysis.  You can compute stresses and displace-
  19. ments and send back information to display the deformed structure as an
  20. AutoCAD drawing.
  21.  
  22. Since the AutoCAD drawing database (.dwg file) is written in a very compact
  23. format that changes significantly from time to time as new features are
  24. added, we do not document its format and do not recommend that you attempt
  25. to write programs to read it directly.  To assist in interchanging drawings
  26. between AutoCAD and other programs, a "Drawing Interchange" file format
  27. (DXF(tm)) has been defined.  All implementations of AutoCAD accept this
  28. format and are able to convert it to and from their internal drawing file
  29. representation.
  30.  
  31. AutoCAD also supports the Initial Graphics Exchange Standard (IGES) file
  32. format.  The information comprising an AutoCAD drawing can be written out
  33. in IGES format, and IGES files can be read and converted to AutoCAD's
  34. internal format.
  35.  
  36.  
  37. C.1  ASCII Drawing Interchange (DXF) Files
  38.  
  39. This section describes AutoCAD's DXF (drawing interchange) file format and
  40. the commands provided to read and write these files.  DXF files are stan-
  41. dard ASCII text files.  They can easily be translated to the formats of
  42. other CAD systems, or submitted to other programs for specialized analysis.
  43.  
  44.  
  45. C.1.1  DXFOUT Command - Writing a DXF File
  46.  
  47. You can generate a drawing interchange file from an existing drawing by
  48. means of the Drawing Editor's DXFOUT command.  The command format is:
  49.  
  50.     Command:  DXFOUT   File name <default>:  (name or RETURN)
  51.  
  52. The default name for the output file is the same as that of the current
  53. drawing, but with a file type of ".dxf".  If you specify an explicit file
  54. name, do not include a file type; ".dxf" is assumed.  If a file with the
  55. same name already exists, it is deleted.  Next, DXFOUT asks what precision
  56.  
  57.                                                                           1
  58. AutoCAD Reference Manual
  59.  
  60. you want for floating-point numbers and permits output of a partial DXF
  61. file containing only selected objects.
  62.  
  63.     Enter decimal places of accuracy (0 to 16)/Entities/Binary <6>:
  64.  
  65. The "Binary" option is described later in this appendix. If you respond
  66. with "Entities" (or just "E"), DXFOUT will ask you to select the objects
  67. you want written to the DXF file.  Only the objects you select will be
  68. included in the output file - symbol tables (including Block Definitions)
  69. will not be included.  Once you've selected the desired objects, AutoCAD
  70. will prompt again for the numeric precision:
  71.  
  72.     Enter decimal places of accuracy (0 to 16)/Binary <6>:
  73.  
  74.  
  75. C.1.2  DXFIN Command - Loading a DXF File
  76.  
  77. A drawing interchange file can be converted into an AutoCAD drawing by
  78. means of the DXFIN command.  First enter the Drawing Editor using the
  79. "Create new drawing" task from the Main Menu.  Then issue the DXFIN com-
  80. mand.
  81.  
  82.     Command:  DXFIN   File name:  (name)
  83.  
  84. Enter the name of the drawing interchange file to be loaded.
  85.  
  86.  
  87. Full DXFIN
  88.  
  89. To load a complete DXF file, you must use DXFIN in an empty drawing, before
  90. any entities have been drawn and before any additional Block definitions,
  91. layers, linetypes, text styles, named views, named coordinate systems, or
  92. named viewport configurations have been created.  (If your prototype draw-
  93. ing contains any such items, use Main Menu Task 1's "name=" technique to
  94. create a new drawing without a prototype.)
  95.  
  96. If any errors are detected during the input, the new drawing is discarded.
  97. Otherwise, an automatic "ZOOM All" is performed to set the drawing extents.
  98.  
  99.  
  100. Partial DXFIN
  101.  
  102. If the current drawing is not empty, DXFIN loads only the ENTITIES section
  103. of the DXF file, adding the entities found there to the current drawing.
  104. In this case, DXFIN displays the message:
  105.  
  106.     Not a new drawing -- only ENTITIES section will be input.
  107.  
  108. If errors are detected during such partial DXF input, the drawing is
  109. returned to the state it was in before the DXFIN command.  Otherwise, the
  110. newly added entities are drawn.
  111.  
  112.  
  113.  
  114. 2
  115.                                    (C) Drawing Interchange and File Formats
  116.  
  117. C.1.3  DXF File Format
  118.  
  119. This section describes the format of a DXF file in detail.  It contains a
  120. great deal of technical information that you need only if you're writing
  121. your own program to process DXF files.  Otherwise, you can skip this sec-
  122. tion.
  123.  
  124. It would probably be helpful to produce a DXF file from a small drawing,
  125. print it out, and refer to it occasionally while reading the information
  126. presented below.
  127.  
  128.  
  129. C.1.3.1  General File Structure
  130.  
  131. A Drawing Interchange File is simply an ASCII text file with a file type of
  132. ".dxf" and specially-formatted text.  The overall organization of a DXF
  133. file is as follows:
  134.  
  135.   1. HEADER section - General information about the drawing is found in
  136.      this section of the DXF file.  Each parameter has a variable name
  137.      and an associated value.
  138.  
  139.   2. TABLES section -- This section contains definitions of named
  140.      items.
  141.  
  142.        o  Linetype (LTYPE) table
  143.        o  Layer table
  144.        o  Text style (STYLE) table
  145.        o  View table
  146.        o  User Coordinate System (UCS) table
  147.        o  Viewport configuration (VPORT) table
  148.        o  Drawing manager (DWGMGR) table (for future use)
  149.  
  150.   3. BLOCKS section - This section contains Block Definition entities
  151.      describing the entities comprising each Block in the drawing.
  152.  
  153.   4. ENTITIES section - This section contains the drawing entities,
  154.      including any Block References.
  155.  
  156.   5. END OF FILE
  157.  
  158. If you use DXFOUT's "Entities" option, the resulting DXF file will contain
  159. only the ENTITIES and END OF FILE sections, and the ENTITIES section will
  160. reflect only the objects you select for output.
  161.  
  162. A DXF file is composed of a multiplicity of groups, each of which occupies
  163. two lines in the DXF file.  The first line of a group is a group code,
  164. which is a positive nonzero integer output in FORTRAN "I3" format (that is,
  165. right justified and blank filled in a three character field).  The second
  166. line of the group is the group value, in a format which depends on the type
  167. of the group as specified by the group code.
  168.  
  169.  
  170.  
  171.                                                                           3
  172. AutoCAD Reference Manual
  173.  
  174. The specific assignment of group codes depends upon the item being
  175. described in the file.  However, the type of the value this group supplies
  176. is derived from the group code in the following way:
  177.  
  178.                     Group code range   Following value
  179.                           0 - 9       String
  180.                          10 - 59      Floating-point
  181.                          60 - 79      Integer
  182.                         210 - 239     Floating-point
  183.                            999        Comment (string)
  184.  
  185. Thus a program can easily read the value following a group code without
  186. knowing the particular use of this group in an item in the file.  The
  187. appearance of values in the DXF file is not affected by the setting of the
  188. UNITS command: coordinates are always represented as decimal (or possibly
  189. scientific notation if very large) numbers, and angles are always repre-
  190. sented in decimal degrees with zero degrees to the east of origin.
  191.  
  192. Variables, table entries, and entities are described by a group that intro-
  193. duces the item, giving its type and/or name, followed by multiple groups
  194. that supply the values associated with the item.  In addition, special
  195. groups are used for file separators such as markers for the beginning and
  196. end of sections, tables, and the file itself.
  197.  
  198. Entities, table entries, and file separators are always introduced with a 0
  199. group code that is followed by a name describing the item.
  200.  
  201.  
  202. C.1.3.2  Group Codes
  203.  
  204. Group codes are used both to indicate the type of the value of the group,
  205. as explained above, and to indicate the general use of the group.  The spe-
  206. cific function of the group code depends on the actual variable, table
  207. item, or entity description.  This section indicates the general use of
  208. groups, noting as "(fixed)" any that always have the same function.
  209.  
  210.    Group code                           Value type
  211.        0        Identifies the start of an entity, table entry, or file
  212.                 separator.  The text value that follows indicates which.
  213.        1        The primary text value for an entity.
  214.        2        A name; Attribute tag, Block name, etc.
  215.       3-4       Other textual or name values.
  216.        5        Entity handle expressed as a hexadecimal string.
  217.        6        Line type name (fixed).
  218.        7        Text style name (fixed).
  219.        8        Layer name (fixed).
  220.        9        Variable name identifier (used only in HEADER section of
  221.                 the DXF file).
  222.        10       Primary X coordinate (start point of a Line or Text
  223.                 entity, center of a Circle, etc.).
  224.      11-18      Other X coordinates.
  225.                                                              continued ...
  226.  
  227.  
  228. 4
  229.                                    (C) Drawing Interchange and File Formats
  230.  
  231.    Group code                           Value type
  232.        20       Primary Y coordinate.  2n values always correspond to 1n
  233.                 values and immediately follow them in the file.
  234.      21-28      Other Y coordinates.
  235.        30       Primary Z coordinate.  3n values always correspond to 1n
  236.                 and 2n values and immediately follow them in the file.
  237.      31-37      Other Z coordinates.
  238.        38       This entity's elevation if nonzero (fixed).  Output only
  239.                 if system variable FLATLAND is set to 1.
  240.        39       This entity's thickness if nonzero (fixed).
  241.      40-48      Floating-point values (text height, scale factors, etc.).
  242.        49       Repeated value - multiple 49 groups may appear in one
  243.                 entity for variable length tables (such as the dash
  244.                 lengths in the LTYPE table).  A 7x group always appears
  245.                 before the first 49 group to specify the table length.
  246.      50-58      Angles.
  247.        62       Color number (fixed).
  248.        66       "Entities follow" flag (fixed).
  249.      70-78      Integer values, such as repeat counts, flag bits, or
  250.                 modes.
  251.  210, 220, 230  X, Y, and Z components of extrusion direction.
  252.       999       Comments
  253.  
  254.  
  255. C.1.4  Comments
  256.  
  257. The 999 group code indicates that the following line is a comment string.
  258. DXFOUT does not currently include such groups in its output file, but DXFIN
  259. honors them and ignores the comments.  Thus, you can use the 999 group to
  260. include comments in a DXF file you've edited.  For example:
  261.  
  262.     999
  263.     This is a comment.
  264.     999
  265.     This is another comment.
  266.  
  267.  
  268. C.1.5  File Sections
  269.  
  270. The DXF file is subdivided into four sections.  File separator groups are
  271. used to delimit these file sections.  The following is an example of a void
  272. DXF file with only the section markers and table headers present.
  273.  
  274.       0                           (Begin HEADER section)
  275.     SECTION
  276.       2
  277.     HEADER
  278.         <<<<Header variable items go here>>>>
  279.       0
  280.     ENDSEC                        (End HEADER section)
  281.       0                           (Begin TABLES section)
  282.     SECTION
  283.       2
  284.  
  285.                                                                           5
  286. AutoCAD Reference Manual
  287.  
  288.     TABLES
  289.       0
  290.     TABLE
  291.       2
  292.     VPORT
  293.      70
  294.     (viewport table maximum item count)
  295.         <<<<viewport table items go here>>>>
  296.       0
  297.     ENDTAB
  298.       0
  299.     TABLE
  300.       2
  301.     LTYPE, LAYER, STYLE, VIEW, UCS, or DWGMGR
  302.      70
  303.     (Table maximum item count)
  304.         <<<<Table items go here>>>>
  305.       0
  306.     ENDTAB
  307.       0
  308.     ENDSEC                        (End TABLES section)
  309.       0                           (Begin BLOCKS section)
  310.     SECTION
  311.       2
  312.     BLOCKS
  313.         <<<<Block definition entities go here>>>>
  314.       0
  315.     ENDSEC                        (End BLOCKS section)
  316.       0                           (Begin ENTITIES section)
  317.     SECTION
  318.       2
  319.     ENTITIES
  320.         <<<<Drawing entities go here>>>>
  321.       0
  322.     ENDSEC                        (End ENTITIES section)
  323.       0
  324.     EOF                           (End of file)
  325.  
  326.  
  327. C.1.5.1  HEADER Section
  328.  
  329. The HEADER section of the DXF file contains settings of variables
  330. associated with the drawing.  These variables are set with various commands
  331. and are the type of information displayed by the STATUS command.  Each
  332. variable is specified in the header section by a 9 group giving its name,
  333. followed by groups that supply its value.  The header variables, the groups
  334. that follow, and their meanings are listed below.
  335.  
  336. Although this list is very similar to the list of system variables in
  337. Appendix A, the two lists are not identical.  Be sure you're referring to
  338. the proper list.
  339.  
  340.  
  341.  
  342. 6
  343.                                    (C) Drawing Interchange and File Formats
  344.  
  345.   $ACADVER       1     the AutoCAD drawing database version number.
  346.   $ANGBASE      50     Angle 0 direction.
  347.   $ANGDIR       70     1=clockwise angles, 0=counterclockwise.
  348.   $ATTDIA       70     Attribute entry dialogues, 1 = on, 0 = off
  349.   $ATTMODE      70     Attribute visibility: 0=none, 1=normal, 2=all.
  350.   $ATTREQ       70     Attribute prompting during INSERT, 1 = on, 0 = off
  351.   $AUNITS       70     UNITS format for angles.
  352.   $AUPREC       70     UNITS precision for angles.
  353.   $AXISMODE     70     axis on if nonzero.
  354.   $AXISUNIT   10,20    axis X and Y tick spacing.
  355.   $BLIPMODE     70     blip mode on if nonzero.
  356.   $CECOLOR      62     entity color number; 0 = BYBLOCK, 256 = BYLAYER.
  357.   $CELTYPE       6     entity linetype name, or BYBLOCK or BYLAYER.
  358.   $CHAMFERA     40     first chamfer distance.
  359.   $CHAMFERB     40     second chamfer distance.
  360.   $CLAYER        8     current layer name.
  361.   $COORDS       70     0=static coordinate display, 1=continuous update,
  362.                        2="d<a" format.
  363.   $DIMALT       70     alternate unit dimensioning performed if nonzero.
  364.   $DIMALTD      70     alternate unit decimal places.
  365.   $DIMALTF      40     alternate unit scale factor.
  366.   $DIMAPOST      1     alternate dimensioning suffix
  367.   $DIMASO       70     1=create associative dimensioning, 0=draw
  368.                        individual entities.
  369.   $DIMASZ       40     dimensioning arrow size.
  370.   $DIMBLK        2     arrow block name.
  371.   $DIMBLK1       1     first arrow block name.
  372.   $DIMBLK2       1     second arrow block name.
  373.   $DIMCEN       40     size of center mark/lines.
  374.   $DIMDLE       40     dimension line extension.
  375.   $DIMDLI       40     dimension line increment.
  376.   $DIMEXE       40     extension line extension.
  377.   $DIMEXO       40     extension line offset.
  378.   $DIMLFAC      40     linear measurements scale factor.
  379.   $DIMLIM       70     dimension limits generated if nonzero.
  380.   $DIMPOST       1     general dimensioning suffix
  381.   $DIMRND       40     rounding value for dimension distances.
  382.   $DIMSAH       70     use separate arrow blocks if nonzero.
  383.   $DIMSCALE     40     overall dimensioning scale factor.
  384.   $DIMSE1       70     first extension line suppressed if nonzero.
  385.   $DIMSE2       70     second extension line suppressed if nonzero.
  386.   $DIMSHO       70     1=Recompute dimensions while dragging,
  387.                        0=drag original image.
  388.   $DIMSOXD      70     suppress outside-extensions dimension lines
  389.                        if nonzero.
  390.   $DIMTAD       70     text above dimension line if nonzero.
  391.   $DIMTIH       70     text inside horizontal if nonzero.
  392.   $DIMTIX       70     force text inside extensions if nonzero.
  393.   $DIMTM        40     minus tolerance.
  394.   $DIMTOFL      70     if text outside extensions, force line between
  395.                        extensions if nonzero.
  396.   $DIMTOH       70     text outside horizontal if nonzero.
  397.  
  398.  
  399.                                                                           7
  400. AutoCAD Reference Manual
  401.  
  402.   $DIMTOL       70     dimension tolerances generated if nonzero.
  403.   $DIMTP        40     plus tolerance.
  404.   $DIMTSZ       40     dimensioning tick size: 0=no ticks.
  405.   $DIMTVP       40     text vertical position.
  406.   $DIMTXT       40     dimensioning text height.
  407.   $DIMZIN       70     zero suppression for "feet & inch" dimensions.
  408.   $DRAGMODE     70     0=off, 1=on, 2=auto.
  409.   $ELEVATION    40     current elevation set by ELEV command.
  410.   $EXTMAX    10,20,30  XY drawing extents upper right corner (in WCS).
  411.   $EXTMIN    10,20,30  XY drawing extents lower left corner (in WCS).
  412.   $FILLETRAD    40     fillet radius.
  413.   $FILLMODE     70     FILL mode on if nonzero.
  414.   $FLATLAND     70     force compatibility with older versions if nonzero.
  415.   $HANDLING     70     handles enabled if nonzero.
  416.   $HANDSEED      5     next available handle.
  417.   $INSBASE   10,20,30  insertion base set by BASE command (in WCS).
  418.   $LIMCHECK     70     nonzero if limits checking is on.
  419.   $LIMMAX     10,20    XY drawing limits upper right corner (in WCS).
  420.   $LIMMIN     10,20    XY drawing limits lower left corner (in WCS).
  421.   $LTSCALE      40     global linetype scale.
  422.   $LUNITS       70     UNITS format for coordinates and distances.
  423.   $LUPREC       70     UNITS precision for coordinates and distances.
  424.   $MENU          1     name of menu file.
  425.   $MIRRTEXT     70     MIRROR text if nonzero.
  426.   $ORTHOMODE    70     ORTHO mode on if nonzero.
  427.   $OSMODE       70     running object snap modes.
  428.   $PDMODE       70     point display mode.
  429.   $PDSIZE       40     point display size.
  430.   $PLINEWID     40     default Polyline width.
  431.   $QTEXTMODE    70     quick text mode on if nonzero.
  432.   $REGENMODE    70     REGENAUTO mode on if nonzero.
  433.   $SKETCHINC    40     sketch record increment.
  434.   $SKPOLY       70     0=sketch lines, 1=sketch polylines.
  435.   $SPLFRAME     70     spline control polygon display, 1 = on, 0 = off.
  436.   $SPLINESEGS   70     number of line segments per spline patch.
  437.   $SPLINETYPE   70     spline curve type for "PEDIT Spline"
  438.                        (see Appendix A).
  439.   $SURFTAB1     70     number of mesh tabulations in first direction.
  440.   $SURFTAB2     70     number of mesh tabulations in second direction.
  441.   $SURFTYPE     70     surface type for "PEDIT Smooth" (see Appendix A).
  442.   $SURFU        70     surface density (for "PEDIT Smooth") in M direction.
  443.   $SURFV        70     surface density (for "PEDIT Smooth") in N direction.
  444.   $TDCREATE     40     date/time of drawing creation.
  445.   $TDINDWG      40     cumulative editing time for this drawing.
  446.   $TDUPDATE     40     date/time of last drawing update.
  447.   $TDUSRTIMER   40     user elapsed timer.
  448.   $TEXTSIZE     40     default text height.
  449.   $TEXTSTYLE     7     current text style name.
  450.   $THICKNESS    40     current thickness set by ELEV command.
  451.   $TRACEWID     40     default Trace width.
  452.   $UCSNAME       1     Name of current UCS.
  453.   $UCSORG    10,20,30  origin of current UCS (in WCS).
  454.  
  455.  
  456. 8
  457.                                    (C) Drawing Interchange and File Formats
  458.  
  459.   $UCSXDIR   10,20,30  direction of current UCS's X axis
  460.                        (in World coordinates).
  461.   $UCSYDIR   10,20,30  direction of current UCS's Y axis
  462.                        (in World coordinates).
  463.   $USERI1 - 5   70     Five integer variables intended for use by
  464.                        third-party developers.
  465.   $USERR1 - 5   40     Five real variables intended for use by
  466.                        third-party developers.
  467.   $USRTIMER     70     0=timer off, 1=timer on.
  468.   $WORLDVIEW    70     1=set UCS to WCS during DVIEW/VPOINT,
  469.                        0=don't change UCS
  470.  
  471. The header variables listed below existed prior to AutoCAD Release 10 but
  472. now have independent settings for each active viewport.  They are not
  473. output by DXFOUT unless system variable FLATLAND is set to 1.  DXFIN honors
  474. these variables when read from DXF files, but if a VPORT symbol table with
  475. "*ACTIVE" entries is present (as is true for any DXF file produced by
  476. Release 10 or higher), the values in the VPORT table entries will override
  477. the values of these header variables.
  478.  
  479.   $FASTZOOM     70     fast zoom enabled if nonzero.
  480.   $GRIDMODE     70     grid mode on if nonzero.
  481.   $GRIDUNIT   10,20    grid X and Y spacing.
  482.   $SNAPANG      50     snap grid rotation angle.
  483.   $SNAPBASE   10,20    snap/grid base point (in UCS).
  484.   $SNAPISOPAIR  70     isometric plane: 0=left, 1=top, 2=right.
  485.   $SNAPMODE     70     snap mode on if nonzero.
  486.   $SNAPSTYLE    70     snap style: 0=standard, 1=isometric.
  487.   $SNAPUNIT   10,20    snap grid X and Y spacing.
  488.   $VIEWCTR    10,20    XY center of current view on screen.
  489.   $VIEWDIR   10,20,30  viewing direction (direction from target, in WCS).
  490.   $VIEWSIZE     40     height of view.
  491.  
  492. The date/time variables ($TDCREATE and $TDUPDATE) are output as real num-
  493. bers in the format:
  494.  
  495.     <Julian date>.<Fraction>
  496.  
  497. The elapsed time variables ($TDINDWG and $TDUSRTIMER) have a similar
  498. format:
  499.  
  500.     <Number of days>.<Fraction>
  501.  
  502.  
  503. C.1.5.2  TABLES Section
  504.  
  505. The TABLES section contains several tables, each of which in turn contains
  506. a variable number of table entries. The order of the tables may change, but
  507. the LTYPE table will always precede the LAYER table.  Each table is intro-
  508. duced with a 0 group with the label "TABLE".  This is followed by a 2 group
  509. identifying the particular table (VPORT, LTYPE, LAYER, STYLE, VIEW, UCS, or
  510. DWGMGR) and a 70 group that specifies the maximum number of table entries
  511.  
  512.                                                                           9
  513. AutoCAD Reference Manual
  514.  
  515. that may follow. The tables in a drawing may contain deleted items, but
  516. these are not written to the DXF file.  Thus, fewer table entries may
  517. follow the table header than are indicated by the 70 group, so don't use
  518. the count in the 70 group as an index to read in the table.  It is provided
  519. so that your program to read DXF files can allocate an array in advance
  520. large enough to hold all the table entries that follow.
  521.  
  522. Following this header for each table are the table entries.  Each table
  523. item consists of a 0 group identifying the item type (same as table name,
  524. e.g., "LTYPE" or "LAYER"), a 2 group giving the name of the table entry, a
  525. 70 group specifying flags relevant to the table entry (defined for each
  526. table below), and additional groups that give the value of the table entry.
  527. The end of each table is indicated by a 0 group with the value "ENDTAB".
  528.  
  529. If any table entry has bit value 64 set in its group 70 flags, the table
  530. entry was referenced by at least one entity in the drawing the last time
  531. the drawing editor was entered to edit this drawing.  This "referenced"
  532. flag is for the benefit of the PURGE command; it can be ignored by most
  533. programs that read DXF files, and need not be set by programs that write
  534. DXF files.
  535.  
  536. The following are the groups used for each type of table item.  All groups
  537. are present for each table item.
  538.  
  539.   LTYPE    3 (descriptive text for linetype), 72 (alignment code), 73
  540.            (number of dash length items), 40 (total pattern length), 49
  541.            (dash length 1), 49 (dash length 2), . . .
  542.  
  543.   LAYER    62 (color number, negative if layer is off), 6 (linetype
  544.            name).  The 1 bit is set in the 70 group flags if the layer is
  545.            frozen.
  546.  
  547.   STYLE    40 (fixed text height; 0 if not fixed), 41 (width factor), 50
  548.            (obliquing angle), 71 (text generation flags), 42 (last height
  549.            used), 3 (primary font file name), 4 ("bigfont" file name;
  550.            blank if none).  If the third bit (4) is set in the 70 group
  551.            flags, this is a vertically-oriented text style.
  552.  
  553.            A STYLE table item is used to record shape file LOAD requests
  554.            also.  In this case the first bit (1) is set in the 70 group
  555.            flags and only the 3 group (shape file name) is meaningful
  556.            (all the other groups are output, however).
  557.  
  558.            The "text generation flags" are a bit-coded field with the
  559.            following bit meanings:
  560.  
  561.                 Flag bit value                Meaning
  562.                        2        Text is backwards (mirrored in X)
  563.                        4        Text is upside down (mirrored in Y)
  564.  
  565.  
  566.  
  567.  
  568.  
  569. 10
  570.                                    (C) Drawing Interchange and File Formats
  571.  
  572.   VIEW     40 and 41 (view height and width), 10 and 20 (view center
  573.            point), 11, 21, 31 (view direction from target, in WCS), 12,
  574.            22, 32 (target point, in WCS), 42 (lens length), 43 and 44
  575.            (front and back clipping planes-offsets from target point), 50
  576.            (twist angle), 71 view mode (see VIEWMODE system variable
  577.            Appendix A).
  578.  
  579.   UCS      10, 20, 30 (origin), 11, 21, 31 (X axis direction), 12, 22, 32
  580.            (Y axis direction).  All in World coordinates.
  581.  
  582.   VPORT    10 and 20 (lower left corner of viewport; 0.0 to 1.0), 11 and
  583.            21 (upper right corner), 12 and 22 (view center point), 13 and
  584.            23 (snap base point), 14 and 24 (snap spacing, X and Y), 15
  585.            and 25 (grid spacing, X and Y), 16, 26, 36 (view direction
  586.            from target point), 17, 27, 37 (view target point), 40 (view
  587.            height), 41 (viewport aspect ratio), 42 (lens length), 43 and
  588.            44 (front and back clipping planes; offsets from target
  589.            point), 50 (snap rotation angle), 51 (view twist angle), 71
  590.            (view mode; see VIEWMODE system variable in Appendix A), 72
  591.            (circle zoom percent), 73 (fast zoom setting), 74 (UCSICON
  592.            setting), 75 (snap on/off), 76 (grid on/off), 77 (snap style),
  593.            78 (snap isopair).
  594.  
  595.            The VPORT table is unique in that it may contain several
  596.            entries with the same name (indicating a multiple-viewport
  597.            configuration).  The entries corresponding to the active view-
  598.            port configuration all have the name "*ACTIVE".  The first
  599.            such entry describes the current viewport.
  600.  
  601.   DWGMGR   For future use.  Fields not yet defined.
  602.  
  603.  
  604. C.1.5.3  BLOCKS Section
  605.  
  606. The BLOCKS section of the DXF file contains all the Block Definitions.
  607. This section contains the entities that make up the Blocks used in the
  608. drawing, including "anonymous" Blocks generated by the HATCH command and by
  609. associative dimensioning.  The format of the entities in this section is
  610. identical to those in the ENTITIES section described below, so refer to
  611. that section for details.  All entities in the BLOCKS section appear
  612. between BLOCK and ENDBLK entities.  BLOCK and ENDBLK entities appear only
  613. in the BLOCKS section.  Block definitions are never nested (that is, no
  614. BLOCK or ENDBLK entity ever appears within another BLOCK-ENDBLK pair).
  615.  
  616.  
  617. C.1.5.4  ENTITIES Section
  618.  
  619. Entity items appear in both the BLOCK and ENTITIES sections of the DXF
  620. file.  The appearance of entities in the two sections is identical, with
  621. the exception that entities in the BLOCK section never have handles. The
  622. following gives the format of each entity as it appears in the file.  Some
  623. groups that define an entity always appear, and some are optional and
  624. appear only if they differ from their default values.  In the following
  625.  
  626.                                                                          11
  627. AutoCAD Reference Manual
  628.  
  629. discussion, groups that always occur are given by their group number and
  630. function, while optional groups are indicated by "-optional N" following
  631. the group description.  "N" is the default value if the group is omitted.
  632.  
  633. Programs that read DXF files should not assume that the groups describing
  634. an entity occur in the order given here.  The end of the groups that make
  635. up an entity is indicated by the next 0 group, beginning the next entity or
  636. indicating the end of the section.
  637.  
  638. Remember that a DXF file is a complete representation of the drawing data-
  639. base, and that as AutoCAD is further enhanced, new groups will be added to
  640. entities to accommodate additional features.  Writing your DXF processing
  641. program in a table-driven way, making no assumptions about the order of
  642. groups in an entity, and ignoring any groups not presently defined, will
  643. make it much easier to accommodate DXF files from future releases of
  644. AutoCAD.
  645.  
  646. Each entity begins with a 0 group identifying the entity type.  The names
  647. used for the entities are given in the table that follows.  Every entity
  648. contains an 8 group that gives the name of the layer on which the entity
  649. resides.  Each entity may have elevation, thickness, linetype, or color
  650. information associated with it. If handles are enabled, every entity has a
  651. 5 group containing its handle (as a string representing a hexadecimal
  652. number). The following groups are included only if the entity has nonde-
  653. fault values for these properties.
  654.  
  655.   Group code                         Meaning
  656.        6      Linetype name (if not "BYLAYER").  The special name "BYBLOCK"
  657.               indicates a floating linetype.
  658.  
  659.       38      Elevation (if nonzero).  Output only if system variable
  660.               FLATLAND is 1.  Otherwise, Z coordinates are supplied as
  661.               3x-groups as part of each of the entity's defining points.
  662.  
  663.       39      Thickness (if nonzero).
  664.  
  665.       62      Color number (if not "BYLAYER").  Zero indicates the
  666.               "BYBLOCK" (floating) color.
  667.  
  668.      210,     These groups are included for each Line, Point, Circle, Shape,
  669.      220,     Text, Arc, Trace, Solid, Block Reference, Polyline, Dimension,
  670.      230      Attribute, and Attribute Definition entity if its extrusion
  671.               direction is not parallel to the World Z axis.  The indicate
  672.               the X, Y, and Z components of the entity's extrusion direction.
  673.  
  674. The rest of the groups that make up an entity item are described below.
  675. Many of the entities include "flag" groups.  These are integer codes (6x or
  676. 7x groups) that encode various pieces of information regarding the entity,
  677. and are specific to the particular entity type.  In the following descrip-
  678. tions, the term "bit-coded" means that the flag contains various true/false
  679. values coded as the sum of the bit values given.  Any bits not defined in
  680. the following section should be ignored in these fields and set to zero
  681. when constructing a DXF file.
  682.  
  683. 12
  684.                                    (C) Drawing Interchange and File Formats
  685.  
  686.   LINE      10, 20, 30 (start point), 11, 21, 31 (end point).
  687.  
  688.   POINT     10, 20, 30 (point), 50 (angle of X axis for the UCS in effect
  689.             when the Point was drawn -optional 0, for use when PDMODE is
  690.             nonzero).
  691.  
  692.   CIRCLE    10, 20, 30 (center), 40 (radius).
  693.  
  694.   ARC       10, 20, 30 (center), 40 (radius), 50 (start angle), 51 (end
  695.             angle).
  696.  
  697.   TRACE     Four points defining the corners of the trace: (10, 20, 30),
  698.             (11, 21, 31), (12, 22, 32), and (13, 23, 33).
  699.  
  700.   SOLID     Four points defining the corners of the solid: (10, 20, 30),
  701.             (11, 21, 31), (12, 22, 32), and (13, 23, 33).  If only three
  702.             points were entered (forming a triangular solid), the third
  703.             and fourth points will be the same.
  704.  
  705.   TEXT      10, 20, 30 (insertion point), 40 (height), 1 (text value), 50
  706.             (rotation angle -optional 0), 41 (relative X scale factor
  707.             -optional 1), 51 (obliquing angle -optional 0), 7 (text style
  708.             name -optional "STANDARD"), 71 (text generation flags
  709.             -optional 0), 72 (justification type -optional 0), 11, 21, 31
  710.             (alignment point -optional, appears only if 72 group is
  711.             present and nonzero).
  712.  
  713.             The "text generation flags" are a bit-coded field with mean-
  714.             ings as follows:
  715.  
  716.                  Flag bit value                Meaning
  717.                        2         Text is backwards (mirrored in X)
  718.                        4         Text is upside down (mirrored in Y)
  719.  
  720.             The "justification type" value (not bit-coded) indicates the
  721.             text justification style used on this entity, as shown in the
  722.             following table.
  723.  
  724.               Value                       Meaning
  725.                 0    Text is left justified
  726.                 1    Text is centered along its baseline
  727.                 2    Text is right justified
  728.                 3    Text is aligned between two points (height varies)
  729.                 4    Text is "middle" (fully) centered
  730.                 5    Text is fit between two points (width varies)
  731.  
  732.             If the justification is anything other than 0 (left justi-
  733.             fied), 11, 21, and 31 groups will also appear in the entity
  734.             to specify the alignment point of the text (center, right-
  735.             most, or second alignment point).
  736.  
  737.             DXFOUT handles ASCII control characters in text strings by
  738.             expanding the character into a "^" (caret) followed by the
  739.  
  740.                                                                          13
  741. AutoCAD Reference Manual
  742.  
  743.             appropriate letter.  For example, an ASCII Control-G (BEL,
  744.             decimal code 7) is output as "^G".  If the text itself con-
  745.             tains a caret character, it is expanded to "^ " (caret,
  746.             space).  DXFIN performs the complementary conversion.
  747.  
  748.   SHAPE     10, 20, 30 (insertion point), 40 (size), 2 (shape name), 50
  749.             (rotation angle -optional 0), 41 (relative X scale factor
  750.             -optional 1), 51 (obliquing angle -optional 0).
  751.  
  752.   BLOCK     2 (Block name), 70 (Block type flags), 10, 20, 30 (Block base
  753.             point).  Appears only in BLOCKS section.  The "Block type
  754.             flags" are bit-coded, with the following bit meanings:
  755.  
  756.               Flag bit value                   Meaning
  757.                     1         This is an "anonymous" Block generated by
  758.                               hatching, associative dimensioning, or
  759.                               other internal operations.
  760.                     2         This Block has Attributes.
  761.  
  762.   ENDBLK    No groups.  Appears only in BLOCKS section.
  763.  
  764.   INSERT    66 ("Attributes follow" flag -optional 0), 2 (Block name),
  765.             10, 20, 30 (insertion point), 41 (X scale factor -optional
  766.             1), 42 (Y scale factor -optional 1), 43 (Z scale factor
  767.             -optional 1), 50 (rotation angle -optional 0), 70 and 71
  768.             (column and row counts -optional 1), 44 and 45 (column and
  769.             row spacing -optional 0).
  770.  
  771.             If the value of the "Attributes follow" flag is 1, a series
  772.             of Attribute (ATTRIB) entities is expected to follow the
  773.             INSERT, terminated by a sequence end (SEQEND) entity.
  774.  
  775.   ATTDEF    10, 20, 30 (text start), 40 (text height), 1 (default value,
  776.             see TEXT above for handling of ASCII control characters), 3
  777.             (prompt string), 2 (tag string), 70 (Attribute flags), 73
  778.             (field length -optional 0), 50 (text rotation -optional 0),
  779.             41 (relative X scale factor -optional 1), 51 (obliquing angle
  780.             -optional 0), 7 (text style name -optional "STANDARD"), 71
  781.             (text generation flags -optional 0, see TEXT above), 72 (text
  782.             justification type -optional 0, see TEXT above)), 11, 21, 31
  783.             (alignment point -optional, appears only if 72 group is
  784.             present and nonzero).
  785.  
  786.             The "Attribute flags" are a bit-coded field in which the bits
  787.             have the following meanings:
  788.  
  789.               Flag bit value                   Meaning
  790.                     1         Attribute is invisible (does not display)
  791.                     2         This is a constant Attribute
  792.                     4         Verification is required on input of this
  793.                               Attribute.
  794.                     8         Attribute is preset (no prompt during
  795.                               insertion)
  796.  
  797. 14
  798.                                    (C) Drawing Interchange and File Formats
  799.  
  800.   ATTRIB    10, 20, 30 (text start), 40 (text height), 1 (value, see TEXT
  801.             above for handling of ASCII control characters), 2 (Attribute
  802.             tag), 70 (Attribute flags; see ATTDEF above), 73 (field
  803.             length -optional 0), 50 (text rotation -optional 0), 41 (rel-
  804.             ative X scale factor -optional 1), 51 (obliquing angle
  805.             -optional 0), 7 (text style name -optional "STANDARD"), 71
  806.             (text generation flags -optional 0, see TEXT above), 72 (text
  807.             justification type -optional 0, see TEXT above), 11, 21, 31
  808.             (alignment point -optional, appears only if 72 group is
  809.             present and nonzero).
  810.  
  811.   POLYLINE  66 ("vertices follow flag"), 70 (Polyline flags), 40 (default
  812.             starting width), 41 (default ending width), 71 and 72 (poly-
  813.             gon mesh M and N vertex counts -optional 0), 73 and 74
  814.             (smooth surface M and N densities -optional 0), 75 (smooth
  815.             surface type -optional 0).  The default widths apply to any
  816.             vertex that doesn't supply widths (see below).
  817.  
  818.             The "vertices follow" flag is always 1, indicating that a
  819.             series of VERTEX entities is expected to follow the POLYLINE,
  820.             terminated by a sequence end (SEQEND) entity.  The "polyline
  821.             flags" group is a bit-coded field with bits defined as fol-
  822.             lows:
  823.  
  824.              Flag bit value                    Meaning
  825.                     1        This is a closed Polyline (or a polygon
  826.                              mesh closed in the M direction)
  827.                     2        Curve-fit vertices have been added
  828.                     4        Spline-fit vertices have been added
  829.                     8        This is a 3D Polyline
  830.                    16        This is a 3D polygon mesh.  Group 75 indi-
  831.                              cates the smooth surface type, as follows:
  832.  
  833.                                0 = no smooth surface fitted
  834.                                5 = quadratic B-spline surface
  835.                                6 = cubic B-spline surface
  836.                                8 = Bezier surface
  837.  
  838.                    32        The polygon mesh is closed in the N direc-
  839.                              tion
  840.  
  841.   VERTEX    10, 20, 30 (location), 40 (starting width -optional, see
  842.             above), 41 (ending width -optional, see above), 42 (bulge),
  843.             70 (vertex flags), 50 (curve fit tangent direction
  844.             -optional).  The bulge is the tangent of 1/4 the included
  845.             angle for an arc segment, made negative if the arc goes
  846.             clockwise from the start point to the end point; a bulge of 0
  847.             indicates a straight segment, and a bulge of 1 is a semicir-
  848.             cle.  The meanings of the bit-coded "vertex flags" are shown
  849.             in the following table.
  850.  
  851.  
  852.  
  853.  
  854.                                                                          15
  855. AutoCAD Reference Manual
  856.  
  857.              Flag bit value                    Meaning
  858.                    1         Extra vertex created by curve fitting
  859.                    2         Curve fit tangent defined for this vertex.
  860.                              A curve fit tangent direction of 0 may be
  861.                              omitted from the DXF output, but is signif-
  862.                              icant if this bit is set.
  863.                    4         Unused (never set in DXF files)
  864.                    8         Spline vertex created by spline fitting
  865.                    16        Spline frame control point
  866.                    32        3D Polyline vertex
  867.                    64        3D polygon mesh vertex
  868.  
  869.   SEQEND    No fields.  This entity marks the end of vertices (VERTEX
  870.             type name) for a Polyline, or the end of Attribute entities
  871.             (ATTRIB type name) for an INSERT entity that has Attributes
  872.             (indicated by 66 group present and nonzero in INSERT entity).
  873.  
  874.   3DLINE    10, 20, 30 (start point), 11, 21, 31 (end point).
  875.  
  876.   3DFACE    Four points defining the corners of the face: (10, 20, 30),
  877.             (11, 21, 31), (12, 22, 32), and (13, 23, 33).  70 (invisible
  878.             edge flags -optional 0).  If only three points were entered
  879.             (forming a triangular face), the third and fourth points will
  880.             be the same.  The meanings of the bit-coded "invisible edge
  881.             flags" are shown in the following table.
  882.  
  883.                       Flag bit value           Meaning
  884.                              1        First edge is invisible
  885.                              2        Second edge is invisible
  886.                              4        Third edge is invisible
  887.                              8        Fourth edge is invisible
  888.  
  889.   DIMENSION 2 (name of pseudo-Block containing the current dimension pic-
  890.             ture), 10, 20, 30 (definition point for all dimension types),
  891.             11, 21, 31 (middle point of dimension text), 12, 22, 32
  892.             (insertion point for clones of a dimension (for BASELINE and
  893.             CONTINUE), 70 (Dimension type; 0=rotated, horizontal, or ver-
  894.             tical; 1=aligned; 2=angular; 3=diameter; 4=radius - the value
  895.             128 is added to this field if the dimension text has been
  896.             positioned at a user-defined location rather than at the
  897.             default location), 1 (dimension text explicitly entered by
  898.             the user.  If null, the dimension measurement is drawn as the
  899.             text.  Otherwise, this text is drawn (but if it includes the
  900.             sequence "<>", the dimension measurement is drawn in place of
  901.             the "<>")), 13, 23, 33 (definition point for linear and angu-
  902.             lar dimensions), 14, 24, 34 (definition point for linear and
  903.             angular dimensions), 15, 25, 35 (definition point for diame-
  904.             ter, radius, and angular dimensions), 16, 26, 36 (point
  905.             defining dimension arc for angular dimensions), 40 (leader
  906.             length for radius and diameter dimensions), 50 (angle of
  907.             rotated, horizontal, or vertical linear dimensions).
  908.  
  909.  
  910.  
  911. 16
  912.                                    (C) Drawing Interchange and File Formats
  913.  
  914.             In addition, all dimension types have an optional group (code
  915.             51) that indicates the "horizontal" direction for the Dimen-
  916.             sion entity.  This determines the orientation of dimension
  917.             text and dimension lines for horizontal, vertical and rotated
  918.             linear dimensions.  The group value is the negative of the
  919.             ECS angle of the UCS X axis in effect when the Dimension was
  920.             drawn.  In other words, the X axis of the UCS in effect when
  921.             the Dimension was drawn is always parallel to the XY plane
  922.             for the Dimension's ECS, and the angle between the UCS X axis
  923.             and the ECS X axis is a single 2D angle.  The value in group
  924.             51 is the angle from "horizontal" (the effective X axis) to
  925.             the ECS X axis.  Entity Coordinate Systems (ECS) are
  926.             described later in this section.
  927.  
  928.             For all dimension types, the following groups represent 3D
  929.             WCS points, regardless of the FLATLAND setting.
  930.  
  931.                 10, 20, 30
  932.                 13, 23, 33
  933.                 14, 24, 34
  934.                 15, 25, 35
  935.  
  936.             For all dimension types, the following groups represent ECS
  937.             points, and are 2D or 3D depending on the FLATLAND setting.
  938.  
  939.                 11, 21(, 31)
  940.                 12, 22(, 32)
  941.                 16, 26(, 36)
  942.  
  943.   Linear    (13,23,33)   The point used to specify the first extension line.
  944.             (14,24,34)   The point used to specify the second extension line.
  945.             (10,20,30)   The point used to specify the dimension line.
  946.  
  947.   Angular   (13,23,33) and (14,24,34)  The endpoints of the first line
  948.             (10,20,30) and (15,25,35)  The endpoints of the second line
  949.             (16,26,36)                 The point used to specify the dimen-
  950.                                        sion line arc
  951.  
  952.   Diameter  (15,25,35)   The point used to pick the circle/arc to dimension
  953.             (10,20,30)   The point on that circle directly across from the
  954.                          pick point.
  955.  
  956.   Radius    (15,25,35)   The point used to pick the circle/arc to dimension
  957.             (10,20,30)   The center of that circle.
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964.  
  965.  
  966.  
  967.  
  968.                                                                          17
  969. AutoCAD Reference Manual
  970.  
  971. Entity Coordinate Systems (ECS)
  972.  
  973. To save space in the drawing database (and in the DXF file), the points
  974. associated with each entity are expressed in terms of its own Entity Coor-
  975. dinate System (ECS).  The Entity Coordinate System allows AutoCAD to use a
  976. much more compact means of representation for entities.  With ECS, the only
  977. additional information needed to describe its position in 3D space is the
  978. 3D vector describing the Z axis of the ECS, and the elevation value.
  979.  
  980. For a given Z axis (or extrusion) direction, there is an infinite number of
  981. coordinate systems, defined by translating the origin in 3D space and by
  982. rotating the X and Y axes around the Z axis.  However, for the same Z axis
  983. direction, there is only one Entity Coordinate System.  It has the follow-
  984. ing properties:
  985.  
  986.   o  Its origin coincides with the WCS origin.
  987.   o  The orientation of the X and Y axes within the XY plane are calcu-
  988.      lated in an arbitrary, but consistent manner.  AutoCAD performs
  989.      this calculation using the "arbitrary axis" algorithm described
  990.      below.
  991.  
  992. For some entities, the ECS is equivalent to the World Coordinate System and
  993. all points (DXF groups 10-37) are expressed in World coordinates.  See the
  994. following table.
  995.  
  996.                   Entities                        Notes
  997.         LINE, POINT, 3DFACE, 3D       These entities do not lie in
  998.         Polyline, 3D Vertex, 3D       a particular plane.  All
  999.         Mesh, 3D Mesh vertex          points are expressed in
  1000.                                       World coordinates.  Of these
  1001.                                       entities, only Lines and
  1002.                                       Points can be extruded;
  1003.                                       their extrusion direction can
  1004.                                       differ from the World Z axis.
  1005.  
  1006.         CIRCLE, ARC, SOLID, TRACE,    These entities are planar in
  1007.         TEXT, ATTRIB, ATTDEF, SHAPE,  nature.  All points are
  1008.         INSERT, 2D Polyline, 2D       expressed in Entity coordi-
  1009.         Vertex                        nates.  All these entities
  1010.                                       can be extruded; their
  1011.                                       extrusion direction can
  1012.                                       differ from the World Z axis.
  1013.  
  1014.         DIMENSION                     Some of a Dimension's points are
  1015.                                       expressed in WCS, and some in ECS.
  1016.  
  1017.         Others                        The remaining entities have
  1018.                                       no point data and their
  1019.                                       coordinate systems are
  1020.                                       therefore irrelevant.
  1021.  
  1022. Once AutoCAD has established the ECS for a given entity, here's how it
  1023. works:
  1024.  
  1025. 18
  1026.                                    (C) Drawing Interchange and File Formats
  1027.  
  1028.   o  The elevation value stored with an entity indicates how far along
  1029.      the Z axis to shift the XY plane from the WCS origin to make it
  1030.      coincide with the plane that the entity is in.  How much of this
  1031.      is the user-defined elevation is unimportant.
  1032.   o  Any 2D points describing the entity that were entered through the
  1033.      UCS are transformed into the corresponding 2D points in the ECS,
  1034.      which (more often than not) is shifted and rotated with respect to
  1035.      the UCS.
  1036.  
  1037. A few ramifications of this process are:
  1038.  
  1039.   o  You can not reliably find out what UCS was in effect when an
  1040.      entity was acquired.  You can only find out where the entity is in
  1041.      the current UCS if the current UCS has the same Z axis direction
  1042.      as the original UCS (i.e., they both reduce to the same ECS).
  1043.   o  When you enter the XY coordinates of an entity in a given UCS and
  1044.      then do a DXFOUT, you probably won't recognize those XY coordi-
  1045.      nates in the DXF file.  You'll have to know the method by which
  1046.      AutoCAD calculates the X and Y axes in order to work with these
  1047.      values.
  1048.   o  The elevation value stored with an entity and output in DXF files
  1049.      will be a sum of the Z coordinate difference between the UCS XY
  1050.      plane and the ECS XY plane, and the elevation value that the user
  1051.      specified at the time the entity was drawn.
  1052.  
  1053.  
  1054. Arbitrary Axis Algorithm
  1055.  
  1056. The arbitrary axis algorithm is used by AutoCAD internally to implement the
  1057. "arbitrary but consistent" generation of Entity Coordinate Systems for all
  1058. entities except Lines, Points, 3D Faces, and 3D Polylines, which contain
  1059. points in World coordinates.
  1060.  
  1061. Given a unit-length vector to be used as the Z axis of a coordinate system,
  1062. the arbitrary axis algorithm generates a corresponding X axis for the coor-
  1063. dinate system.  The Y axis follows by application of the right hand rule.
  1064.  
  1065. The method is to examine the given Z axis (also called the normal vector)
  1066. and see if it is close to the positive or negative World Z axis.  If it is,
  1067. cross the World Y axis with the given Z axis to arrive at the arbitrary X
  1068. axis.  If not, cross the World Z axis with the given Z axis to arrive at
  1069. the arbitrary X axis.  The boundary at which the decision is made was
  1070. chosen to be both inexpensive to calculate and completely portable across
  1071. machines.  This is achieved by having a sort of "square" polar cap, the
  1072. bounds of which is 1/64, which is precisely specifiable in 6 decimal frac-
  1073. tion digits and in 6 binary fraction bits.
  1074.  
  1075. In mathematical terms, the algorithm does the following (all "vectors" are
  1076. assumed to be in 3D space, specified in the World Coordinate System).
  1077.  
  1078.     Let the given normal vector be called N.
  1079.     Let the World Y axis be called Wy, which is always (0,1,0).
  1080.     Let the World Z axis be called Wz, which is always (0,0,1).
  1081.  
  1082.                                                                          19
  1083. AutoCAD Reference Manual
  1084.  
  1085. We are looking for the arbitrary X and Y axes to go with the normal N.
  1086. They'll be called Ax and Ay.  N could also be called Az (the arbitrary Z
  1087. axis).
  1088.  
  1089.     If (Nx < 1/64) and (Ny < 1/64) then
  1090.        Ax = Wy * N      (where "*" is the cross-product operator).
  1091.     Otherwise,
  1092.        Ax = Wz * N.
  1093.     Scale Ax to unit length.
  1094.  
  1095. The method of getting the Ay vector would be:
  1096.  
  1097.     Ay = N * Ax.
  1098.     Scale Ay to unit length.
  1099.  
  1100.  
  1101. C.1.6  Writing DXF Interface Programs
  1102.  
  1103. Writing a program that communicates with AutoCAD via the DXF mechanism
  1104. often appears far more difficult than it really is.  The DXF file contains
  1105. a seemingly overwhelming amount of information, and examining a DXF file
  1106. manually may lead to the conclusion that the task is hopeless.
  1107.  
  1108. However, the DXF file has been designed to be easy to process by program,
  1109. not manually.  The format was constructed with the deliberate intention of
  1110. making it easy to ignore information you don't care about while easily
  1111. reading the information you need.  Just remember to handle the groups in
  1112. any order and ignore any group you don't care about, and you'll be home
  1113. free.
  1114.  
  1115. As an example, the following is a Microsoft BASIC program that reads a DXF
  1116. file and extracts all the LINE entities from the drawing (ignoring lines
  1117. that appear inside Blocks).  It prints the endpoints of these lines on the
  1118. screen.  As an exercise you might try entering this program into your com-
  1119. puter, running it on a DXF file from one of your drawings, then enhancing
  1120. it to print the center point and radius of any circles it encounters.  This
  1121. program is not put forward as an example of clean programming technique nor
  1122. the way a general DXF processor should be written; it is presented as an
  1123. example of just how simple a DXF-reading program can be.
  1124.  
  1125.     1000 REM
  1126.     1010 REM Extract lines from DXF file
  1127.     1020 REM
  1128.     1030 G1% = 0
  1129.     1040 LINE INPUT "DXF file name: "; A$
  1130.     1050 OPEN "i", 1, A$ + ".dxf"
  1131.     1060 REM
  1132.     1070 REM Ignore until section start encountered
  1133.     1080 REM
  1134.     1090 GOSUB 2000
  1135.     1100 IF G% <> 0 THEN 1090
  1136.     1110 IF S$ <> "SECTION" THEN 1090
  1137.  
  1138.  
  1139. 20
  1140.                                    (C) Drawing Interchange and File Formats
  1141.  
  1142.     1120 GOSUB 2000
  1143.     1130 REM
  1144.     1140 REM Skip unless ENTITIES section
  1145.     1150 REM
  1146.     1160 IF S$ <> "ENTITIES" THEN 1090
  1147.     1170 REM
  1148.     1180 REM Scan until end of section, processing LINEs
  1149.     1190 REM
  1150.     1200 GOSUB 2000
  1151.     1210 IF G% = 0 AND S$ = "ENDSEC" THEN 2200
  1152.     1220 IF G% = 0 AND S$ = "LINE" THEN GOSUB 1400 : GOTO 1210
  1153.     1230 GOTO 1200
  1154.     1400 REM
  1155.     1410 REM Accumulate LINE entity groups
  1156.     1420 REM
  1157.     1430 GOSUB 2000
  1158.     1440 IF G% = 10 THEN X1 = X : Y1 = Y : Z1 = Z
  1159.     1450 IF G% = 11 THEN X2 = X : Y2 = Y : Z2 = Z
  1160.     1460 IF G% = 0 THEN PRINT "Line from (";X1;",";Y1;",";Z1;") to (";X2;
  1161.                               ",";Y2;",";Z2;")
  1162.     1470 GOTO 1430
  1163.     2000 REM
  1164.     2010 REM Read group code and following value
  1165.     2020 REM For X coordinates, read Y and possibly Z also
  1166.     2030 REM
  1167.     2040 IF G1% < 0 THEN G% = -G1% : G1% = 0 ELSE INPUT #1, G%
  1168.     2050 IF G% <   10 OR  G% =  999 THEN LINE INPUT #1, S$ : RETURN
  1169.     2060 IF G% >=  38 AND G% <=  49 THEN INPUT #1, V : RETURN
  1170.     2080 IF G% >=  50 AND G% <=  59 THEN INPUT #1, A : RETURN
  1171.     2090 IF G% >=  60 AND G% <=  69 THEN INPUT #1, P% : RETURN
  1172.     2100 IF G% >=  70 AND G% <=  79 THEN INPUT #1, F% : RETURN
  1173.     2110 IF G% >= 210 AND G% <= 219 THEN 2130
  1174.     2120 IF G% >=  20 THEN PRINT "Invalid group code";G% : STOP
  1175.     2130 INPUT #1, X
  1176.     2140 INPUT #1, G1%
  1177.     2150 IF G1% <> (G%+10) THEN PRINT "Invalid Y coord code";G1% : STOP
  1178.     2160 INPUT #1, Y
  1179.     2170 INPUT #1, G1%
  1180.     2180 IF G1% <> (G%+20) THEN G1% = -G1% ELSE INPUT #1, Z
  1181.     2190 RETURN
  1182.     2200 CLOSE 1
  1183.  
  1184. Writing a program that constructs a DXF file is more difficult, because you
  1185. must maintain consistency within the drawing in order for AutoCAD to find
  1186. it acceptable.  AutoCAD allows you to omit many items in a DXF file and
  1187. still obtain a usable drawing.  The entire HEADER section can be omitted if
  1188. you don't need to set any header variables.  Any of the tables in the
  1189. TABLES section can be omitted if you don't need to make any entries, and in
  1190. fact the entire TABLES section can be dropped if nothing in it is required.
  1191. If you define any linetypes in the LTYPE table, this table must appear
  1192. before the LAYER table.  If no Block Definitions are used in the drawing,
  1193. the BLOCKS section can be omitted.  If present, however, it must appear
  1194. before the ENTITIES section.  Within the ENTITIES section, you can refer-
  1195. ence layer names even though you haven't defined them in the LAYER table.
  1196.  
  1197.                                                                          21
  1198. AutoCAD Reference Manual
  1199.  
  1200. Such layers will be automatically created with color 7 and the CONTINUOUS
  1201. linetype.  The EOF item must be present at the end of file.
  1202.  
  1203. The following Microsoft BASIC program constructs a DXF file representing a
  1204. polygon with a specified number of sides, leftmost origin point, and side
  1205. length.  This program supplies only the ENTITIES section of the DXF file,
  1206. and places all entities generated on the default layer "0".  This may be
  1207. taken as an example of a minimum DXF generation program.  Since this pro-
  1208. gram doesn't create the drawing header, the drawing limits, extents, and
  1209. current view will be invalid after performing a DXFIN on the drawing gener-
  1210. ated by this program.  You can do a "ZOOM E" to fill the screen with the
  1211. drawing generated.  Then adjust the limits manually.
  1212.  
  1213.     1000 REM
  1214.     1010 REM Polygon generator
  1215.     1020 REM
  1216.     1030 LINE INPUT "Drawing (DXF) file name: "; A$
  1217.     1040 OPEN "o", 1, A$ + ".dxf"
  1218.     1050 PRINT #1, 0
  1219.     1060 PRINT #1, "SECTION"
  1220.     1070 PRINT #1, 2
  1221.     1080 PRINT #1, "ENTITIES"
  1222.     1090 PI = ATN(1) * 4
  1223.     1100 INPUT "Number of sides for polygon: "; S%
  1224.     1110 INPUT "Starting point (X,Y): "; X, Y
  1225.     1120 INPUT "Polygon side: "; D
  1226.     1130 A1 = (2 * PI) / S%
  1227.     1140 A = PI / 2
  1228.     1150 FOR I% = 1 TO S%
  1229.     1160 PRINT #1, 0
  1230.     1170 PRINT #1, "LINE"
  1231.     1180 PRINT #1, 8
  1232.     1190 PRINT #1, "0"
  1233.     1200 PRINT #1, 10
  1234.     1210 PRINT #1, X
  1235.     1220 PRINT #1, 20
  1236.     1230 PRINT #1, Y
  1237.     1240 PRINT #1, 30
  1238.     1250 PRINT #1, 0.0
  1239.     1260 NX = D * COS(A) + X
  1240.     1270 NY = D * SIN(A) + Y
  1241.     1280 PRINT #1, 11
  1242.     1290 PRINT #1, NX
  1243.     1300 PRINT #1, 21
  1244.     1310 PRINT #1, NY
  1245.     1320 PRINT #1, 31
  1246.     1330 PRINT #1, 0.0
  1247.     1340 X = NX
  1248.     1350 Y = NY
  1249.     1360 A = A + A1
  1250.     1370 NEXT I%
  1251.     1380 PRINT #1, 0
  1252.     1390 PRINT #1, "ENDSEC"
  1253.  
  1254. 22
  1255.                                    (C) Drawing Interchange and File Formats
  1256.  
  1257.     1400 PRINT #1, 0
  1258.     1410 PRINT #1, "EOF"
  1259.     1420 CLOSE 1
  1260.  
  1261. The DXFIN command is relatively forgiving with respect to the format of
  1262. data items.  As long as a properly formatted item appears on the line on
  1263. which the data is expected, DXFIN will accept it (of course, string items
  1264. should not have leading spaces unless these are intended to be part of the
  1265. string).  The above program takes advantage of this flexibility in input
  1266. format, and does not go to great effort to generate a file appearing
  1267. exactly like one generated by AutoCAD.
  1268.  
  1269. In the case of error loading a DXF file using DXFIN, AutoCAD reports the
  1270. error with a message indicating the nature of the error detected and the
  1271. last line processed in the DXF file before the error was detected.  This
  1272. may not be the line on which the error occurred, especially in the case of
  1273. such errors as omission of required groups.
  1274.  
  1275.  
  1276.  
  1277. C.2  Binary Drawing Interchange Files
  1278.  
  1279. The ASCII DXF file format described in the preceding sections of this
  1280. appendix is a complete representation of an AutoCAD drawing in an ASCII
  1281. text form easily processed by other programs.  In addition, AutoCAD can
  1282. produce or read a binary form of the full DXF file, and accepts limited
  1283. input in another binary file format.  These binary files are described in
  1284. the following sections.
  1285.  
  1286.  
  1287. C.2.1  Binary DXF Files
  1288.  
  1289. The DXFOUT command provides a "Binary" option that writes binary DXF files.
  1290. Such a file contains all of the information present in an ASCII DXF file,
  1291. but in a much more compact form that takes, typically, 25% less file space
  1292. and can be read and written more quickly (typically 5 times faster) by
  1293. AutoCAD.  Unlike ASCII DXF files, which entail a trade-off between size and
  1294. floating-point accuracy, binary DXF files preserve all of the accuracy in
  1295. the drawing database.  AutoCAD Release 10 is the first version to support
  1296. this form of DXF file; it cannot be read by older versions.
  1297.  
  1298. A binary DXF file begins with a 22-byte sentinel consisting of:
  1299.  
  1300.     "AutoCAD Binary DXF<CR><LF><SUB><NUL>"
  1301.  
  1302. Following the sentinel are (group,value) pairs as in an ASCII DXF file, but
  1303. represented in binary form.  The group code is a single-byte binary value,
  1304. and the value that follows is one of the following:
  1305.  
  1306.   o  a two-byte integer with the least significant byte first and the
  1307.      most significant byte last,
  1308.  
  1309.  
  1310.  
  1311.                                                                          23
  1312. AutoCAD Reference Manual
  1313.  
  1314.   o  an eight-byte IEEE double precision floating-point number stored
  1315.      with the least significant byte first and the most significant
  1316.      byte last, or
  1317.  
  1318.   o  an ASCII string terminated by a zero (NUL) byte.
  1319.  
  1320. The type of the datum following a group is determined from the group code
  1321. according to the same rules used in decoding ASCII DXF files.  Translation
  1322. of angles to degrees, and dates to fractional Julian date representation,
  1323. is performed for binary files as well as for ASCII DXF files.  The comment
  1324. group, 999, is not used in binary DXF files.
  1325.  
  1326. DXFOUT writes binary DXF files with the same file type (".dxf") as for
  1327. ASCII DXF files.  The DXFIN command automatically recognizes a binary file
  1328. (by means of its sentinel string) and loads it.  There is no need for you
  1329. to identify it as a binary file.
  1330.  
  1331. If DXFIN encounters an error in a binary DXF file, it reports the byte
  1332. address within the file where the error was detected.
  1333.  
  1334.  
  1335. C.3  Binary Drawing Interchange (DXB) Files
  1336.  
  1337. The DXF file formats described earlier in this appendix are complete repre-
  1338. sentations of an AutoCAD drawing that can be written and read by AutoCAD
  1339. and other programs.  However, AutoShade(tm) and programs executed via the
  1340. "external commands" facility (Appendix B) often have a need to supply
  1341. simple geometric input to AutoCAD.  For these purposes, another file format
  1342. even more compact than the binary DXF format is supported.  This format,
  1343. called DXB (for "drawing interchange binary") is limited in the entities it
  1344. can represent.  Furthermore, AutoCAD has a command to read such files, but
  1345. no direct method of writing them.  (The ADI plotter driver can plot to a
  1346. file in DXB format.)
  1347.  
  1348.  
  1349. C.3.1  DXBIN Command
  1350.  
  1351. To load a DXB file produced by a program such as AutoShade, enter the DXBIN
  1352. command:
  1353.  
  1354.     Command:  DXBIN
  1355.     DXB file:
  1356.  
  1357. enter the name of the file you wish to load.  Don't include a file type;
  1358. ".dxb" is assumed.
  1359.  
  1360.  
  1361.  
  1362.  
  1363.  
  1364.  
  1365.  
  1366.  
  1367.  
  1368. 24
  1369.                                    (C) Drawing Interchange and File Formats
  1370.  
  1371. C.3.2  DXB File Format
  1372.  
  1373. This information is for experienced programmers, and is subject to change
  1374. without notice.
  1375.  
  1376. The format of a DXB file is as follows:
  1377.  
  1378.     Header:      "AutoCAD DXB 1.0" CR LF ^Z NUL       (19 bytes)
  1379.     Data:      . . . Zero or more data records . . .
  1380.     Terminator:  NUL                                  (1 byte)
  1381.  
  1382. Each data record begins with a single byte giving its type, followed by
  1383. data items.  The data items have various forms of representation and encod-
  1384. ing.  In the descriptions below, each data item is prefixed with a letter
  1385. and a hyphen.  The meaning of the letter codes is as follows:
  1386.  
  1387.   w-  16-bit integer, byte reversed in the standard 8086 style (least
  1388.       significant byte first, most significant byte second).
  1389.  
  1390.   f-  IEEE 64-bit floating-point value stored with lsb first, msb last
  1391.       (as stored by an 8087).
  1392.  
  1393.   l-  32-bit integer with the bytes reversed 8086-style.
  1394.  
  1395.   n-  Number which may be either a 16-bit integer or a floating-point
  1396.       number depending on the most recent setting of the "number mode"
  1397.       data item.  The number mode defaults to 0, signifying integers.  If
  1398.       set to 1, all n- items will be read as floating-point.
  1399.  
  1400.   u-  Item which is either a 32-bit integer or a floating-point number
  1401.       depending on the most recent number mode setting.  If a 32-bit
  1402.       integer, the value is scaled by multiplying it by 65536 (2^16).  If
  1403.       a floating-point value, no scaling is applied.
  1404.  
  1405.   a-  Item representing an angle.  If number mode is integer, this is a
  1406.       32-bit integer representing an angle in units of millionths of a
  1407.       degree (range 0 to 360,000,000).  If a floating-point number, rep-
  1408.       resents degrees.
  1409.  
  1410. In the following table, the lengths include the item-type byte and assume
  1411. the number mode is set to zero (integer mode).  If number mode is floating-
  1412. point, add 6 bytes to the length for each n- item present and 4 bytes for
  1413. each a-, or u- item present.
  1414.  
  1415.         Item type        Code           Data items           Length
  1416.                        (decimal)                             (bytes)
  1417.      LINE                  1      n-fromx n-fromy               9
  1418.                                   n-tox n-toy
  1419.      POINT                 2      n-x n-y                       5
  1420.      CIRCLE                3      n-ctrx n-ctry n-rad           7
  1421.      ARC                   8      n-ctrx n-ctry n-rad          19
  1422.                                   a-starta a-enda
  1423.                                                       continued ...
  1424.  
  1425.                                                                          25
  1426. AutoCAD Reference Manual
  1427.  
  1428.         Item type        Code           Data items           Length
  1429.                        (decimal)                             (bytes)
  1430.      TRACE                 9      n-x1 n-y1 n-x2 n-y2          17
  1431.                                   n-x3 n-y3 n-x4 n-y4
  1432.      SOLID                11      n-x1 n-y1 n-x2 n-y2          17
  1433.                                   n-x3 n-y3 n-x4 n-y4
  1434.      SEQEND               17      (none)                        1
  1435.      POLYLINE             19      w-closureflag                 3
  1436.      VERTEX               20      n-x n-y                       5
  1437.      3DLINE               21      n-fromx n-fromy n-fromz      13
  1438.                                   n-tox n-toy n-toz
  1439.      3DFACE               22      n-x1 n-y1 n-z1               25
  1440.                                   n-x2 n-y2 n-x2
  1441.                                   n-x3 n-y3 n-z3
  1442.                                   n-x4 n-y4 n-z4
  1443.      SCALE FACTOR         128     f-scalefac                    9
  1444.      NEW LAYER            129     "layername" NUL          "layername"
  1445.                                                            length + 2
  1446.      LINE EXTENSION       130     n-tox n-toy                   5
  1447.      TRACE EXTENSION      131     n-x3 n-y3 n-x4 n-y4           9
  1448.      BLOCK BASE           132     n-bx n-by                     5
  1449.      BULGE                133     u-2h/d                        5
  1450.      WIDTH                134     n-startw n-endw               5
  1451.      NUMBER MODE          135     w-mode                        3
  1452.      NEW COLOR            136     w-colornum                    3
  1453.      3DLINE EXTENSION     137     n-tox n-toy n-toz             7
  1454.  
  1455. The LINE EXTENSION item extends the last line or line extension from its
  1456. "to" point to a new "to point".  The trace extension item similarly extends
  1457. the last trace solid, or trace extension from its x3,y3-x4,y4 ending line
  1458. to a new x3,y3-x4,y4 line.
  1459.  
  1460. The SCALE FACTOR is a floating-point value by which all integer coordinates
  1461. are multiplied to obtain the floating-point coordinates used by the actual
  1462. entities.  The initial scale factor when a file is read is 1.0.  The NEW
  1463. LAYER item will create a layer if none exists, giving it the same defaults
  1464. as the "LAYER NEW" command, and will set that layer as the current layer
  1465. for subsequent entities.  At the end of the DXB file load, the layer in
  1466. effect before the command will be restored.
  1467.  
  1468. The BLOCK BASE item specifies the base (origin) point of a Block being cre-
  1469. ated.  The Block base must be defined before the first entity record is
  1470. encountered.  If DXB is not defining a Block, this specification will be
  1471. ignored.
  1472.  
  1473. A Polyline consists of straight segments of fixed width connecting the ver-
  1474. tices, except as overridden by the BULGE and WIDTH items described below.
  1475. The closure flag should be 0 or 1; if it is 1, then there is an implicit
  1476. segment from the last vertex (immediately before the SEQEND) to the first
  1477. vertex.
  1478.  
  1479. A BULGE item, encountered between two VERTEX items (or after the last
  1480. VERTEX of a closed Polyline), indicates that the two vertices are connected
  1481.  
  1482. 26
  1483.                                    (C) Drawing Interchange and File Formats
  1484.  
  1485. by an arc rather than a straight segment.  If the line segment connecting
  1486. the vertices would have length d, and the perpendicular distance from the
  1487. midpoint of that segment to the arc is h, then the magnitude of the BULGE
  1488. is (2 * h / d).  The sign is negative if the arc from the first vertex to
  1489. the second is clockwise.  A semicircle thus has a bulge of 1 (or -1).  If
  1490. the number mode is 0 (integer), BULGE items are scaled by 216.  If the
  1491. number mode has been set to floating-point, then the floating-point value
  1492. supplied is just 2*h/d (not scaled).
  1493.  
  1494. The WIDTH item indicates the starting and ending widths of the segment
  1495. (straight or curved) connecting two vertices.  This width stays in effect
  1496. until the next width item or the SEQEND.  If there is a WIDTH item between
  1497. the POLYLINE item and the first VERTEX, it is stored as a default width for
  1498. the Polyline; this will save considerable database space if the Polyline
  1499. has several segments of this width.
  1500.  
  1501. The NUMBER MODE item controls the mode of items with types given in the
  1502. table above as n-, a-, or u-.  If the value supplied is zero, these values
  1503. will be integers, otherwise floating-point.  The storage and implicit scal-
  1504. ing conventions for these values in both modes are described above.
  1505.  
  1506. LINEs and 3DLINEs share the same cells to remember the last to-point, so
  1507. you shouldn't mix extension groups for the two entities without an initial
  1508. group before the extension.  There is no "extension" group for 3DFACEs, as
  1509. there's no obvious edge to extend from.
  1510.  
  1511. The "NEW COLOR" group specifies the color for subsequent entities in the
  1512. DXB file.  The "w-colornum" word argument is in the range from 0 to 256.  0
  1513. means color by block, 1-255 are the standard AutoCAD colors, and 256 means
  1514. color by layer.  A color outside the range from 0 to 256 sets the color
  1515. back to the current entity color (you can do this deliberately, and it can
  1516. be quite handy).  The initial entity color of material added by DXBIN is
  1517. the current entity color.
  1518.  
  1519. All points specified in the DXB file are interpreted in terms of the cur-
  1520. rent UCS at the time the DXBIN command is executed.
  1521.  
  1522.  
  1523. C.3.3  Writing DXB Files
  1524.  
  1525. There is no direct AutoCAD command to write a DXB file, but the special
  1526. "ADI" plotter driver can write such a file.  If you want to create a DXB
  1527. file from an AutoCAD drawing, configure the "ADI" plotter and select its
  1528. DXB file output option.
  1529.  
  1530.  
  1531.  
  1532.  
  1533.  
  1534.  
  1535.  
  1536.  
  1537.  
  1538.  
  1539.                                                                          27
  1540. AutoCAD Reference Manual
  1541.  
  1542. C.4  Initial Graphics Exchange Standard (IGES) Files
  1543.  
  1544. Using the commands described in this section, you can instruct AutoCAD to
  1545. read and write IGES format interchange files.
  1546.  
  1547. NOTE:  The format of IGES files and the mapping performed to translate
  1548. between AutoCAD drawing information and IGES are described in the separate
  1549. AutoCAD / IGES Interface Specifications document (one of the items supplied
  1550. when you return your AutoCAD license registration card).
  1551.  
  1552.  
  1553. C.4.1  IGESOUT Command
  1554.  
  1555. You can generate an Initial Graphics Exchange Standard (IGES) interchange
  1556. file from an existing AutoCAD drawing by means of the Drawing Editor's
  1557. IGESOUT command.  The command format is:
  1558.  
  1559.     Command:  IGESOUT   File name:  (name or RETURN)
  1560.  
  1561. The default name for the output file is the same as that of the current
  1562. drawing, but with a file type of ".igs".  If you specify an explicit file
  1563. name without including a file type, ".igs" is assumed. If a file with the
  1564. same name already exists, it is deleted.
  1565.  
  1566.  
  1567. C.4.2  IGESIN Command
  1568.  
  1569. An IGES interchange file can be converted into an AutoCAD drawing by means
  1570. of the IGESIN command.  First enter the Drawing Editor using the "Create
  1571. new drawing" task from the Main Menu.  Then issue the IGESIN command.
  1572.  
  1573.     Command:  IGESIN   File name:  (name)
  1574.  
  1575. Enter the name of the IGES file to be loaded.
  1576.  
  1577. If a serious error is encountered, the input process is halted and an error
  1578. message is displayed reporting where the error was found.  The partial
  1579. drawing is not discarded.
  1580.  
  1581.  
  1582.  
  1583.  
  1584.  
  1585.  
  1586.  
  1587.  
  1588.  
  1589.  
  1590.  
  1591.  
  1592.  
  1593.  
  1594.  
  1595.  
  1596. 28
  1597.                                    (C) Drawing Interchange and File Formats
  1598.  
  1599. C.5  Slide File Format
  1600.  
  1601. AutoCAD slide files are screen images written by the MSLIDE command and
  1602. read by the VSLIDE command.  This section describes the format of slide
  1603. files, for the benefit of developers who wish to incorporate support for
  1604. AutoCAD slides into their programs.
  1605.  
  1606. This information is for experienced programmers, and is subject to change
  1607. without notice.
  1608.  
  1609. The general format of a slide file is:
  1610.  
  1611.    1.  Header (31 bytes)
  1612.    2.  One or more data records (variable length)
  1613.  
  1614. All coordinates and sizes written to the slide file reflect the graphics
  1615. area of the display device from which the slide was created, with point
  1616. (0,0) located at the lower left corner of the graphics area.  For AutoCAD
  1617. Release 9 and later, the slide file header consists of the following
  1618. fields:
  1619.  
  1620.       Field       Bytes                     Description
  1621.  Id string          17   "AutoCAD Slide" CR LF ^Z NUL
  1622.  
  1623.  Type indicator     1    Currently set to 86 (decimal).
  1624.  
  1625.  Level indicator    1    Currently set to 2.
  1626.  
  1627.  High X dot         2    Width of the graphics area - 1, in pixels.
  1628.  
  1629.  High Y dot         2    Height of the graphics area - 1, in pixels.
  1630.  
  1631.  Aspect ratio       4    Aspect ratio (horizontal size / vertical size in
  1632.                          inches) of the graphics area, scaled by
  1633.                          10,000,000.  This value is always written with
  1634.                          the least significant byte first.
  1635.  
  1636.  Hardware fill      2    Either 0 or 2 (value is unimportant).
  1637.  
  1638.  Test number        2    A number (1234 hex) used to determine whether
  1639.                          all 2-byte values in this slide file were writ-
  1640.                          ten with the high byte first (as by Intel
  1641.                          8086-family CPUs) or the low byte first (as by
  1642.                          Motorola 68000-family CPUs).
  1643.  
  1644. Data records follow the header.  Each data record begins with a 2-byte
  1645. field whose high-order byte is the record type.  The remainder of the
  1646. record may be composed of 1-byte or 2-byte fields, as described in the fol-
  1647. lowing table.  To determine whether the 2-byte fields are written with the
  1648. high byte first or the low byte first, examine the Test number field of the
  1649. header, described above.
  1650.  
  1651.  
  1652.  
  1653.                                                                          29
  1654. AutoCAD Reference Manual
  1655.  
  1656.      Record    Length      Meaning                Description
  1657.    type (hex)  (bytes)
  1658.     00 - 7F       8        Vector      The from-X coordinate for an
  1659.                                        ordinary vector.  From-Y, to-X,
  1660.                                        and to-Y follow in that order, as
  1661.                                        2-byte values.  The from point is
  1662.                                        saved as the last point.
  1663.     80 - FA       -       Undefined    Reserved for future use.
  1664.        FB         5     Offset vector  The low-order byte and the fol-
  1665.                                        lowing three bytes specify the
  1666.                                        endpoints (from-X, from-Y, to-X,
  1667.                                        to-Y) of a vector, in terms of
  1668.                                        offsets (-128 to +127) from the
  1669.                                        saved last point.  The adjusted
  1670.                                        from point is saved as the last
  1671.                                        point for use by subsequent vec-
  1672.                                        tors.
  1673.        FC         2      End of file   The low-order byte is 00.
  1674.        FD         6      Solid fill    The low-order byte is always
  1675.                                        zero.  The following two 2-byte
  1676.                                        values specify the X and Y coor-
  1677.                                        dinates of one vertex of a poly-
  1678.                                        gon to be solid-filled.  3 to 10
  1679.                                        such records occur in sequence.
  1680.                                        A Solid fill record with a nega-
  1681.                                        tive Y coordinate indicates the
  1682.                                        start or end of such a flood
  1683.                                        sequence.  In the start record,
  1684.                                        the X coordinate indicates the
  1685.                                        number of vertex records to
  1686.                                        follow.
  1687.        FE         3        Common      This is a vector starting at the
  1688.                           endpoint     last point.  The low-order byte
  1689.                            vector      and the following byte specify
  1690.                                        to-X and to-Y in terms of offsets
  1691.                                        (-128 to +127) from the saved
  1692.                                        last point.  The adjusted to
  1693.                                        point is saved as the last point
  1694.                                        for use by subsequent vectors.
  1695.        FF         2       New color    Subsequent vectors are to be
  1696.                                        drawn using the color number
  1697.                                        indicated by the low-order byte.
  1698.  
  1699. If a slide contains any vectors at all, a New color record will be the
  1700. first data record.  The order of the vectors in a slide, and the order of
  1701. the endpoints of those vectors, may vary.
  1702.  
  1703. For example, the following is an annotated hex dump of a simple slide file
  1704. created on an IBM PC/AT with an IBM Enhanced Graphics Adapter.  The slide
  1705. consists of a white diagonal line from the lower left corner to the upper
  1706. right corner of the graphics area, a green vertical line near the lower
  1707. left corner, and a small red rectangle at the lower left corner.
  1708.  
  1709.  
  1710. 30
  1711.                                    (C) Drawing Interchange and File Formats
  1712.  
  1713.   41 75 74 6F 43 41        Id string ("AutoCAD Slide" CR LF ^Z NUL)
  1714.   44 20 53 6C 69 64
  1715.   65 0D 0A 1A 00
  1716.   56                       Type indicator (86)
  1717.   02                       Level indicator (2)
  1718.   3C 02                    High X dot (572)
  1719.   24 01                    High Y dot (292)
  1720.   0B 80 DF 00              Aspect ratio (14,647,307 / 10,000,000 = 1.46)
  1721.   02 00                    Hardware fill (2)
  1722.   34 12                    Test number (1234 hex)
  1723.   07 FF                    New color (7 = white)
  1724.   3C 02 24 01 00 00 00 00  Vector from 572,292 to 0,0.  572,292 becomes
  1725.                            "last" point
  1726.   03 FF                    New color (3 = green)
  1727.   0F 00 32 00 0F 00 13 00  Vector from 15,50 to 15,19.  15,50 becomes
  1728.                            "last" point
  1729.   01 FF                    New color (1 = red)
  1730.   12 FB E7 12 CE           Offset vector from 15+18,50-25 (33,25) to
  1731.                            15+18,50-50 (33,0).  33,25 becomes "last" point
  1732.   DF FE 00                 Common-endpoint vector from 33,25 to
  1733.                            33-33,25+0 (0,25).  0,25 becomes "last" point
  1734.   00 FE E7                 Common-endpoint vector from (0,25) to
  1735.                            0+0,25-25 (0,0).  0,0 becomes "last" point
  1736.   21 FE 00                 Common-endpoint vector from (0,0) to
  1737.                            0+33,0+0 (33,0).  33,0 becomes "last" point
  1738.   00 FC                    End of file
  1739.  
  1740.  
  1741. Old Slide Header
  1742.  
  1743. The slide format described above is that produced by AutoCAD Release 9 and
  1744. later, and is portable among all computers running AutoCAD Release 9 or
  1745. later.  Previous versions of AutoCAD (as well as AutoShade 1.0 and
  1746. AutoSketch 1.02) produce slides with a somewhat different header, as shown
  1747. below.
  1748.  
  1749.       Field       Bytes                     Description
  1750.  Id string          17   "AutoCAD Slide" CR LF ^Z NUL
  1751.  Type indicator     1    86 (decimal).
  1752.  Level indicator    1    1 (old format).
  1753.  High X dot         2    Width of the graphics area - 1, in pixels.
  1754.  High Y dot         2    Height of the graphics area - 1, in pixels.
  1755.  Aspect ratio       8    Aspect ratio (horizontal size / vertical size in
  1756.                          inches) of the graphics area, written as a
  1757.                          floating-point number.
  1758.  Hardware fill      2    Either 0 or 2 (value is unimportant).
  1759.  Filler byte        1    Unused
  1760.  
  1761. Note that the old-format header does not contain a Test number field.  The
  1762. floating-point aspect ratio value and all two-byte integers are written in
  1763. the native format of the CPU used to create the file (for 8086-family CPUs,
  1764. IEEE double-precision and low byte first).  Old-format slide files are not
  1765. portable across machine types, but they can be read by any version of AutoCAD
  1766. running on the same CPU type as the CPU with which the slide was created.
  1767.  
  1768.                                                                          31
  1769. AutoCAD Reference Manual
  1770.  
  1771. C.6  Slide Library File Format
  1772.  
  1773. This section describes the format of AutoCAD slide libraries (Release 9 and
  1774. later), for the benefit of developers who wish to incorporate support for
  1775. slide libraries into their programs.
  1776.  
  1777. This information is for experienced programmers, and is subject to change
  1778. without notice.
  1779.  
  1780. The general format of a slide library is:
  1781.  
  1782.   1.  Header (32 bytes)
  1783.       "AutoCAD Slide Library 1.0" CR LF ^Z NUL NUL NUL NUL
  1784.   2.  One or more slide directory entries (36 bytes each)
  1785.   3.  One or more slides (variable length)
  1786.  
  1787. Slide directory entries have the following format:
  1788.  
  1789.   1.  Slide name (NUL terminated) (32 bytes)
  1790.   2.  Address of slide within library file (4 bytes)
  1791.  
  1792. The slide address is always written with the low byte first.  Each slide to
  1793. which the directory points is a complete slide file as described in the
  1794. previous section.  The end of the slide directory is signified by an entry
  1795. with a null slide name (first byte is NUL).  A slide library may contain a
  1796. mixture of old-format and new-format slides.
  1797.  
  1798.  
  1799. <end of document>
  1800.